home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{2A203971-584C-11D1-99FC-00C04FD8DC2E}#1.0#0"; "DDial.dll"
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 2580
- ClientLeft = 510
- ClientTop = 945
- ClientWidth = 4680
- LinkTopic = "Form1"
- ScaleHeight = 2580
- ScaleWidth = 4680
- Begin VB.CommandButton Command4
- Caption = "Dial Using "
- Height = 375
- Left = 2880
- TabIndex = 8
- Top = 1920
- Width = 1455
- End
- Begin VB.CommandButton Command3
- Caption = "Properties+Num"
- Height = 375
- Left = 2880
- TabIndex = 7
- Top = 1440
- Width = 1455
- End
- Begin VB.CommandButton Command2
- Caption = "Dial Properties"
- Height = 375
- Left = 2880
- TabIndex = 6
- Top = 960
- Width = 1455
- End
- Begin VB.TextBox Text2
- Height = 285
- Left = 600
- TabIndex = 2
- Text = "John Doe"
- Top = 1080
- Width = 1575
- End
- Begin VB.TextBox Text1
- Height = 285
- Left = 600
- TabIndex = 1
- Text = "555 5555"
- Top = 480
- Width = 1575
- End
- Begin VB.CommandButton Command1
- Caption = "Dial"
- Height = 375
- Left = 2880
- TabIndex = 0
- Top = 480
- Width = 1455
- End
- Begin DDIALLibCtl.DDialCtl DDialCtl1
- Height = 495
- Left = 240
- OleObjectBlob = "DDial.frx":0000
- TabIndex = 3
- Top = 1920
- Width = 615
- End
- Begin VB.Label Label2
- Caption = "Enter Name"
- Height = 255
- Left = 600
- TabIndex = 5
- Top = 840
- Width = 1575
- End
- Begin VB.Label Label1
- Caption = "Enter Number To Dial"
- Height = 255
- Left = 600
- TabIndex = 4
- Top = 240
- Width = 1575
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- 'n% = DDialCtl1.Dial(Form1.hWnd, Text1.Text, Text2.Text)
- DDialCtl1.Dial Form1.hWnd, Text1.Text, Text2.Text
- End Sub
- Private Sub Command2_Click()
- DDialCtl1.DialProperties
- End Sub
- Private Sub Command3_Click()
- DDialCtl1.DialPropertiesNumber (Text1.Text)
- End Sub
- Private Sub Command4_Click()
- DDialCtl1.DialUsing
- End Sub
-